/* NAVBAR STYLING */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	color: rgba(255, 138, 23, 1);
	border-radius: 15px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
}

/* BUSINESS NAME (logo-title) */
.logo-title {
	padding:10px;
    z-index: 1001;
    text-align: center;
}

a {
    text-decoration: none;
}

.logo-title-text {
	font-size: 34px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 138, 23, 1);
	margin-bottom:0px;
}

.logo-slogan1 {
	font-size: 20px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 138, 23, 0.85);
	position: center;
}

.logo-slogan2 {
	font-size: 20px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 88, 0, 1);
	position:center;
}

/* LINK STYLING */
.nav-links a {
	color: rgba(255, 138, 23, 1);
	text-decoration: none;
	font-weight: bold;
}

.nav-links a:hover {
    color: rgba(255, 88, 0, 1); /* Change color to white on hover */
}

/*NAVBAR MENU*/
.menu {
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:20px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-grow: 1;
    height: 100%;
    z-index: 1001;
    position: relative; /* Or use transform: translateY(0); */
    top: 0;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
}

/* NAVBAR MENU HOVER STYLING */
.menu li:hover {
	
	transition: 0.3s ease;
    transform: translateY(-7px);
}

.menu li {
	padding: 5px 14px;
}

.dropdown-item {
    position: relative;
    display: inline-block; /* To align horizontally with other list items */
    padding: 5px 14px; /* Match the padding of other .menu li items */
}

.dropdown-item:hover {
     /* Match the hover background of other .menu li items */
    border-radius: 5px;
    transition: 0.3s ease;
}

.dropbtn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
    /* The padding for the dropbtn is handled by the .dropdown-item's padding */
    /* Remove padding here if it's already on .dropdown-item */
    display: block; /* Make the whole area clickable within the padding */
    background-color: transparent; /* Ensure no default button background */
    border: none; /* Ensure no default button border */
    cursor: pointer; /* Show pointer on hover */
    outline: none; /* Remove focus outline */
}

.dropdown-content {
    display: none;
    position: absolute;
	color: rgba(255, 138, 23, 1);
    font-weight: 300;
    font-style: normal;
	border-radius: 15px;
    width: 150px;
    z-index: 1;
    top: 100%; /* Position below the dropdown button */
    left: 0;
    background-color: #fff;
    border: 1px solid rgba(255, 138, 23, 1);
    

}

.dropdown-content a {
    color: rgba(255, 138, 23, 1);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-weight: bold;
	gap:18px;
	font-size: 20px;
    
}

.dropdown-content a:hover {
    
	color: rgba(255, 88, 0, 1);
	border-radius: 5px;
	transition: 0.3s ease;
}

.scroll-left {
    height: 50px;	
    overflow: hidden; /* Hides content that overflows the box */
    position: relative; /* Needed for absolute positioning of child <p> */
   
    color: rgba(255, 138, 23, 1); /* Consider changing this color to match your site's theme */
    border: 1px solid orange; /* Consider changing this color to match your site's theme */
    width: 100%; /* Ensure it spans the full width available */
    box-sizing: border-box; /* Include padding/border in the width calculation */
    margin: 20px 0; /* Add some margin above/below the banner */
    padding: 0 10px;
	/* Optional: small horizontal padding */
}

.scroll-left p {
    position: absolute; /* Allows positioning relative to its parent .scroll-left */
    width: 100%;
    height: 100%;
    margin: 0; /* Remove default paragraph margins */
    line-height: 50px; /* Vertically centers text if height is 50px */
    text-align: center;
    white-space: nowrap; /* Prevents text from wrapping */
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:24px;
    
    /* Starting position */
    transform: translateX(100%);
    /* Apply animation to this element */
    animation: scroll-left 18s linear infinite;

    /* Optional: Inherit your theme's font, e.g. */
    /* font-family: 'Audiowide', cursive; */ 
    /* font-size: 20px; */
}

/* Define the animation (the actual movement) */
@keyframes scroll-left {
    0% {
        transform: translateX(100%); /* Starts off-screen to the right */
    }
    100% {
        transform: translateX(-100%); /* Moves to off-screen to the left */
    }
}



.dropdown-item:hover .dropdown-content {
    display: block;
}


body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #fff;
    color: #333;
}

.icon-container{
    justify-items: center;
}

.contact-container{
    justify-items: center;
    display: inline-block;
    padding: 0px 20px;
    padding-top: 30px;
    margin-bottom: 0px;
}
.contact-icon{
    width: 40px;
    height: auto;
     filter: invert(53%) sepia(91%) saturate(2304%) hue-rotate(342deg) brightness(101%) contrast(105%);
    align-items: center;
    }
.contact-icon:hover{
     filter: invert(36%) sepia(97%) saturate(740%) hue-rotate(352deg) brightness(101%) contrast(100%);
     
}

.contact-text{
        text-align: center;
    margin-bottom: 30px;
    color: #555;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:20px;
}


main {
    max-width: 700px;
    margin: 0px auto;
    padding: 0px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 179, 94, 1);
}
h1, h2 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
	font-family: 'Audiowide', cursive;
    font-weight: bold;
	color: #333;
	font-size:30px;
	margin:20px;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:20px;
}

/* Form element styling - Now identified by class */
.email-form { /* Changed from #emailForm */
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}
.email-form label { /* Targeted by class */
    font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
    margin-bottom: 5px;
}
/* Unified styling for text/email inputs with a class */
.form-input { /* Applied to yourName, yourEmail, articleTitle inputs */
    width: calc(100% - 20px); /* Account for padding */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}
.form-textarea { /* Applied to messageBody textarea */
    width: calc(100% - 20px); /* Account for padding */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    resize: vertical;
}
.generate-email-button { /* Changed from button selector to class */
    background-color: rgba(255, 138, 23, 1);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    width: auto;
    justify-self: center;
    margin-top: 20px;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
}
.generate-email-button:hover { /* Hover state for the button class */
    background-color: rgba(255, 138, 23, 0.55);
}

/* Generated mailto link container styling - Now identified by class */
.mailto-link-container { /* Changed from #mailtoLinkContainer */
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.mailto-link-container .generated-mailto-link { /* Targeted by class */
    font-size: 1.2rem;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
.mailto-link-container .generated-mailto-link:hover { /* Hover state for the link class */
    text-decoration: underline;
}

/* Important note box styling */
.important-note {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.logo-footer {
    width: 25%;
    height: auto;
    /* You might want to adjust max-width if the logo gets too big on large screens */
    max-width: 250px; /* Example: set a max-width */
}

hr.rounded {
    border-top: 3px solid rgba(255, 138, 23, 1);
    border-radius: 5px;
    width: 75%; /* This will be relative to its flex container */
    margin: 0; /* Remove default margins */
}

.footer-divider {
    display: flex;
    /* Change to column to stack the logo/divider/links vertically initially */
    flex-direction: row; /* Keep it row for logo and the new container */
    align-items: flex-start; /* Align items to the start of the cross axis */
    gap: 20px;
    padding: 20px;
    width: 90%;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
}

.divider-and-links-container {
    display: flex;
    flex-direction: column; /* Stack HR and Nav vertically */
    flex-grow: 1; /* Allow this container to take up remaining space */
    align-items: flex-start; /* Align children (hr and nav) to the start */
    gap: 10px; /* Space between the HR and the links */
}




.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 960px; /* Or adjust to fit your design */
    margin: 0; /* Remove auto margin as it's now a child of a flex item */
    padding: 10px; /* Adjust padding here if needed */
    /* If you want the black background only around the links: */
    /* background-color: black; */
    /* padding: 10px 20px; */
}


.footer-links a {
    color: rgba(255, 138, 23, 1);
    text-decoration: none;
    font-family: 'Audiowide', cursive;
    font-size: 17px;
    font-weight: bold;
    transition: color 0.3s ease;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.footer-links a:hover {
    color: rgba(255, 88, 0, 1);
}

.contact-icon{
    width: 40px;
    height: auto;
    filter: invert(45%) sepia(97%) saturate(790%) hue-rotate(352deg) brightness(100%) contrast(100%);
    align-items: center;
    transition: filter 0.3s ease;
    }
.contact-icon:hover{
    filter: invert(53%) sepia(91%) saturate(2304%) hue-rotate(342deg) brightness(101%) contrast(105%);
     
}


/*Boring stuff*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

main {
    margin-top: 50px;
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 20px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 5px;
        border-radius: 0;
    }
    .logo-title {
        text-align: center;
        width: 100%;
        padding: 5px 0;
    }
    .menu {
        flex-direction: column;
        width: 100%;
        gap: 5px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 138, 23, 0.5);
    }
    .menu li {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    .dropdown-item {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    .dropdown-content {
        position: static;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    .dropdown-content a {
        padding: 10px 0;
    }

    .logo-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 35%;
    }

    .title-overlay {
        font-size: clamp(2rem, 8vw, 40px);
        top: 60%;
        left: 50%;
        text-align: center;
        width: 90%;
    }
    .intro-text-overlay {
        font-size: clamp(0.9rem, 3vw, 16px);
        top: 75%;
        left: 50%;
        text-align: center;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: clamp(16px, 6vw, 24px);
    }
    .nav-links a, .dropbtn {
        font-size: clamp(12px, 3.5vw, 16px);
    }
}
